home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1997 February
/
EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso
/
progs
/
editor
/
frexxed
/
fpl
/
flipcomment.fpl
< prev
next >
Wrap
Text File
|
1995-07-18
|
501b
|
20 lines
/* FlipComment.FPL Copyright Niklas Angare */
export void FlipComment() {
string line = GetLine();
if(strlen(line)>1) {
if(strcmp(substr(line, 0, 2), "/*")) /* Add comment */
line = sprintf("/*%s*/\n", substr(line, 0, strlen(line)-1));
else { /* Remove comment */
line = substr(line, 2, strlen(line)-5);
line = joinstr(line, "\n");
}
DeleteLine(1);
Output(line);
}
else CursorDown(1);
}
AssignKey("FlipComment();", "alt c");